GET
/
agents
/
{agent_id}
/
versions
curl --request GET \
  --url https://agent-prod.studio.lyzr.ai/v3/agents/{agent_id}/versions \
  --header 'x-api-key: <api-key>'
{
  "versions": [
    {
      "version_id": "v1.0.0",
      "created_at": "2025-06-03T12:00:00Z",
      "description": "Initial release"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

agent_id
string
required

The ID of the agent to retrieve versions for.

Example:

"683f4657fcc016e56d66dbe8"

Response

200
application/json

List of agent versions retrieved successfully

The response is of type object.